Socket
Socket
Sign inDemoInstall

mdast-util-gfm-autolink-literal

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mdast-util-gfm-autolink-literal

mdast extension to parse and serialize GFM autolink literals


Version published
Weekly downloads
3.6M
increased by7.85%
Maintainers
2
Weekly downloads
 
Created

What is mdast-util-gfm-autolink-literal?

The mdast-util-gfm-autolink-literal npm package is a utility to support GitHub Flavored Markdown (GFM) autolink literals in mdast syntax trees. It helps parse and serialize autolink literals like URLs and email addresses directly in Markdown documents, making them clickable links without additional markup.

What are mdast-util-gfm-autolink-literal's main functionalities?

Parsing GFM Autolink Literals

This code sample demonstrates how to set up a processor using Unified with the remark-parse and remark-gfm plugins, enhanced by mdast-util-gfm-autolink-literal to automatically parse URLs written in plain text as autolink literals in the Markdown document.

import { unified } from 'unified';
import markdown from 'remark-parse';
import gfm from 'remark-gfm';
import gfmAutolinkLiteral from 'mdast-util-gfm-autolink-literal';

const processor = unified()
  .use(markdown)
  .use(gfm)
  .use(gfmAutolinkLiteral);

const tree = processor.parse('See https://example.com for more info.');
console.log(tree);

Other packages similar to mdast-util-gfm-autolink-literal

Keywords

FAQs

Package last updated on 03 Feb 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc